home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Source.bin / ResBundle_fr.java < prev    next >
Text File  |  1998-10-18  |  725b  |  29 lines

  1. package symantec.itools.resources;
  2.  
  3. import java.util.ListResourceBundle;
  4.  
  5. public class ResBundle_fr extends ListResourceBundle {
  6.    public Object[][] getContents() {
  7.        return contents;
  8.    }
  9.    static final Object[][] contents = {
  10.        // ScrollingTextBeanInfo
  11.        {"put", "Placer"},
  12.        {"some", "du"},
  13.        {"text", "texte"},
  14.        {"in", "ici"},
  15.        {"here", ""},
  16.        // End ScrollingTextBeanInfo
  17.  
  18.        // Wizard
  19.        {"wizard_label_previous", "< Retour"},
  20.        {"wizard_label_next",     "Prochain >"},
  21.        {"wizard_label_finish",   "Terminer"},
  22.        {"wizard_label_cancel",   "Annuler"},
  23.        {"wizard_label_help",     "Aide"},
  24.        // End Wizard
  25.    };
  26. }
  27.  
  28.  
  29.